# Title
Here we have a graph
import plotly.express as px df = px.data.gapminder().query("year == 2007") fig = px.scatter_geo(df, locations='iso_alpha', size='gdpPercap',scope='usa') fig.show()